home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-12 | 1.3 KB | 38 lines | [TEXT/CWIE] |
- /*
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this computer program is strictly prohibited.
- *
- * Copyright (c) 1984 - 1994 FairCom Corporation.
- * This is an unpublished work, and is subject to limited distribution and
- * restricted disclosure only. ALL RIGHTS RESERVED.
- *
- * RESTRICTED RIGHTS LEGEND
- * Use, duplication, or disclosure by the Government is subject to
- * restrictions set forth in subparagraph (c)(1)(ii) of the Rights in
- * Technical Data and Computer Software clause at DFARS 252.227-7013.
- * FairCom Corporation, 4006 West Broadway, Columbia, MO 65203.
- *
- * c-tree PLUS(tm) Version 6.4
- * Release B
- * October 19, 1994
- */
-
- #ifndef ctSEMA
- #define ctSEMA
-
- #ifdef ctDBGSEM
- #define SNAMELEN 4
- #endif
-
- typedef struct semaphore {
- LONG flag;
- COUNT ownr;
- COUNT padg;
- #ifdef ctDBGSEM
- TEXT snam[SNAMELEN]; /* debugging */
- #endif
- } SEMA;
- typedef SEMA ctMEM * pSEMA;
-
- typedef struct stkstk